home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / WINDOWS / SSAPI10.ZIP / SSTEST.ZIP / DATA.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-26  |  1.2 KB  |  55 lines

  1. // data.h : header file
  2. //
  3. /******************************************************************************\
  4. *
  5. * (C) Copyright 1996 by Shetef Solutions Ltd.
  6. *
  7. * Address:
  8. *        Shetef Solutions Ltd.
  9. *        P. O. Box 7938
  10. *        Haifa 31078
  11. *        ISRAEL
  12. *
  13. * Email :     Support@shetef.com
  14. * WWW:        http://www.shetef.com
  15. * Tel:        +972-4-8260064
  16. * Fax:        +972-6-271210
  17. *
  18. \******************************************************************************/
  19.  
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CData dialog
  22.  
  23. class CData : public CDialog
  24. {
  25. // Construction
  26. public:
  27.     CData(CWnd* pParent = NULL);   // standard constructor
  28.  
  29. // Dialog Data
  30.     //{{AFX_DATA(CData)
  31.     enum { IDD = IDD_DATA };
  32.     CString    m_Data;
  33.     BOOL    m_bSubDir;
  34.     BOOL    m_bExclude;
  35.     //}}AFX_DATA
  36.  
  37.  
  38. // Overrides
  39.     // ClassWizard generated virtual function overrides
  40.     //{{AFX_VIRTUAL(CData)
  41.     protected:
  42.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  43.     //}}AFX_VIRTUAL
  44.  
  45. // Implementation
  46. protected:
  47.  
  48.     // Generated message map functions
  49.     //{{AFX_MSG(CData)
  50.     virtual void OnOK();
  51.     virtual BOOL OnInitDialog();
  52.     //}}AFX_MSG
  53.     DECLARE_MESSAGE_MAP()
  54. };
  55.